home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 398 / 398.xpi / chrome / forecastfox.jar / content / parser / resolver-item.js < prev   
Text File  |  2010-02-04  |  724b  |  21 lines

  1. /*------------------------------------------------------------------------------
  2.   Copyright (c) 2008 Ensolis, LLC. All Rights Reserved.
  3.   ----------------------------------------------------------------------------*/
  4.  
  5. /******************************************************************************
  6.  * ResolverItem Component
  7.  ******************************************************************************/
  8. function ResolverItem()
  9. {
  10.   this._properties = {};
  11. }
  12. ResolverItem.prototype = {
  13.   __proto__:  new ItemBase("ResolverItem"),
  14.  
  15.   ////////////////////////////////
  16.   // nsIDOMXPathNSResolver   
  17.   lookupNamespaceURI: function ResolverItem_lookupNamespaceURI(aPrefix)
  18.   {
  19.     return this._properties[aPrefix] || null;
  20.   }
  21. };